Seal GtkToggleButton.
authorTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:45 +0000 (11:01 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Jun 2008 11:01:45 +0000 (11:01 +0000)
* gtk/gtktogglebutton.h: Seal all member fields.

svn path=/trunk/; revision=20532

gtk/gtktogglebutton.h

index 5f716538736153a7ae2841be026d88d01e0e6daf..f9ca07e41b7523d1e533b12cbc1819b93efe0d55 100644 (file)
@@ -52,9 +52,9 @@ struct _GtkToggleButton
 {
   GtkButton button;
 
-  guint active : 1;
-  guint draw_indicator : 1;
-  guint inconsistent : 1;
+  guint GSEAL (active : 1);
+  guint GSEAL (draw_indicator : 1);
+  guint GSEAL (inconsistent : 1);
 };
 
 struct _GtkToggleButtonClass